1- cd to EasyMedicalImages
2- run:

python -B -m pytest "Test/test_reorient.py" --image-folder "W:\...\your_folder" -p no:cacheprovider

To build a new version and its wheels:
```
$env:Path = "C:\Users\HONNN2\mingw64\bin;$env:Path"
python -m build
```
then
```
cd W:\Shared\LRI\Labs\AIM-HI-Lab\code\honnn2\EasyMedicalImages
# Remove-Item -Recurse -Force build   # the failed configure left a stale cache
pip install -e .
```

To test the library before publishing (AFTER CDing AND ACTIVNG THE VENV IN THE FOLLOWING PLACE)
(.venv) PS Microsoft.PowerShell.Core\FileSystem::\\CC.AD.CCHS.NET\WORLD\Shared\LRI\Labs\AIM-HI-Lab\code\honnn2\EasyMedicalImages> :
```
& "$env:TEMP\emi-test\Scripts\Activate.ps1"
cd $env:TEMP
python "C:\Users\HONNN2\OneDrive - Cleveland Clinic\Documents\TempTest2.py"
```

To build a new version:
```
python -m venv $env:TEMP\emi-test
$py = "$env:TEMP\emi-test\Scripts\python.exe"
& $py -m pip install (Get-ChildItem dist\*.whl).FullName
cd $env:TEMP
& $py -c "import EasyMedicalImages; print('ok:', EasyMedicalImages.__file__)"
```

To update the PyPI, make a special github push:

After you push normally, do the following:

```
git tag v0.0.4a1
git push origin v0.0.4a1
```
or
```
git tag -f v0.0.4a1          # move local tag onto your new commit
git push origin v0.0.4a1 -f  # overwrite it on GitHub
```

Remember to change the verison in pyproject.toml!